home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 201-220 / scopedisk209 / lode / combine.doc < prev    next >
Text File  |  1995-03-19  |  2KB  |  53 lines

  1.  
  2.    This is the documentation for the two programs "Combine" and "Separate",
  3. whose functions are to convert Mother Lode levels into files suitable for
  4. uploading.  To do this, use combine to make a range of levels into one file.
  5. This file can be passed around freely, and Separate can be used to turn it
  6. back into levels on someone else's system.
  7.  
  8. Combine:
  9. --------
  10.  
  11. Syntax: Combine <start_level> <end_level> <filename>
  12. makes a file <filename> containg all levels from <start_level> to <end_level>.
  13. all arguments are mandatory.
  14.  
  15. Examples:
  16.  
  17.    Combine 1 5 MyLevels - Creates file MyLevels containing levels 1,2,3,4,5.
  18.  
  19.    Combine 20 20 OneLevel - Creates file OneLevel containing only level 20.
  20.  
  21.  
  22. Separate:
  23. ---------
  24.  
  25. Syntax: Separate <name> [start_level]
  26. reads the file <name> and copies the levels it contains sequentially, starting
  27. at start_level.  if start_level is left out, Separate will look for the first
  28. empty level(that is, the first level for which there is no file of the form
  29. "lode.lxxx" where xxx is the level number.)
  30.  
  31. Examples:
  32.  
  33.    Separate MyLevels 75 - Copies the levels in MyLevels to level 75 on.
  34.  
  35.    Separate MyLevels  - Appends the levels in MyLevels and the end of the
  36.                         existing levels.
  37.  
  38.  
  39. Notes:
  40. ------
  41.  
  42.    First, why did I need to write these?  Well, the levels as they are can be
  43. passed around and still work, but they would have to be carefully renamed to
  44. avoid overwriting existing levels(i.e. I might have 259 levels on my disk, and
  45. someone could have uploaded level 91).  Without combine and separate, I would
  46. have to rename that level by hand.  These programs do that for you, as well as
  47. making it convenient to pass around groups of levels.
  48.  
  49.    Second: If you don't buy the level editor, you probaby only need Separate.
  50. I included Combine also just in case you've collected some levels from other
  51. places, and want to make one group out of them.
  52.  
  53.